Summoner.constructor   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 13

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
cc 1
c 1
b 0
f 0
nc 1
nop 0
dl 0
loc 13
rs 9.4285

1 Function

Rating   Name   Duplication   Size   Complexity  
A summoner.js ➔ Summoner 0 10 1
1
var Summoner = /** @class */ (function () {
2
    function Summoner(id, name, icon, level, accountId, revisionDate, mastery) {
3
        this.mastery = null;
4
        this.id = id;
5
        this.name = name;
6
        this.icon = icon;
7
        this.level = level;
8
        this.accountId = accountId;
9
        this.revisionDate = revisionDate;
10
        this.mastery = mastery;
11
    }
12
    return Summoner;
13
}());
14
export { Summoner };
15
//# sourceMappingURL=summoner.js.map